home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 076-100 / 085 / filereq / makefile next >
Makefile  |  1995-03-13  |  413b  |  22 lines

  1. OFILES= test.o stdfile.o PatMatch.o VolList.o
  2. CFILES= test.c stdfile.c PatMatch.c VolList.c
  3. TEXT= Makefile readme
  4. OTHERS= $(TEXT) test
  5.  
  6. .SUFFIXES: .c .o .h
  7.  
  8. .c.o:
  9.     @-ram:c/del $*.o
  10.     cc +P -S -B -DAMIGA $*.c
  11.  
  12. test: $(OFILES)
  13.     @-ram:c/del test
  14.     ln -o test $(OFILES) -lcl32
  15.  
  16. stdfile.arc: $(CFILES) $(OTHERS)
  17.     @-ram:c/del stdfile.arc
  18.     arc a stdfile $(CFILES) $(OTHERS)
  19.  
  20. print: $(CFILES) $(TEXT)
  21.     pr $(CFILES) $(TEXT)
  22.